@import url('https://fonts.googleapis.com/css?family=Heebo');


.menu {
	font-family: 'Heebo', sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0px 0px 50px 0px #000;
	overflow-y: auto;
	max-height: 120%;
	color: #797e86;
	background: rgba(13, 13, 13, 1);
	border: 3px solid rgba(16, 16, 16, 1);
	border-radius: 5px;
}

.menu button {
	font-family: 'Heebo', sans-serif;
	outline: none;
	border: none;
	color: #00eff1;
	background-color: rgba(20, 20, 20, 1);
	border: 1.2px solid #00eff1;
	border-radius: 4px;
}

.menu button:hover {
	border: 1.2px solid #008181;
	color: #008181;
}

.menu>table {
	min-width: 600px;
	background-color: rgba(13, 13, 13, 0);
	color: #797e86;
}

.menu>table>thead {
	background-color: rgba(13, 13, 13, 0);
	text-align: center;
	height: 20px;
	line-height: 20px;
	color: #00eff1;
	font-weight: bold
}

.menu td {
	text-align: center;
	padding: 8px;
}

.menu tbody tr:nth-child(even) {
	background: rgba(20, 20, 20, 0);
	color: #797e86
}

.menu tbody tr:nth-child(odd) {
	background: rgba(20, 20, 20, 0);
	color: #797e86
}

hr {
	position: absolute;
	width: 96%;
	border: 0;
	height: 2px;
	left: 10px;
	top: 30px;
	background-color: rgba(20, 20, 20, 1)
}